.banner-red-cross{
    display: flex;
    border-radius: 12px;
    border: 1px solid #DDE6F1;
    background: #F8FBFF;
    padding: 12px 24px;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin-left: auto;
}
.banner-red-cross img{
    width: 55px;
}
.banner-red-cross p{
    margin: 0;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    width: 362px;
}
.banner-red-cross a{
    margin-left: 14px;
    color: #FFF;
    font-family: "Clear Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    padding: 8px 24px;
    border-radius: 10px;
    background: #00B6FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-red-cross a:hover{
    text-decoration: none;
    color: #d1fdff;
    background: #0290ca;
}

.banner-red-cross.mobile-b{
    display: none;
}

@media (max-width: 1199px) {
    .banner-red-cross p{
        width: 260px;
    }
    .banner-red-cross a{
        margin-left: auto;
    }
}
@media (max-width: 991px){
    .banner-red-cross.desktop-b{
        display: none;
    }

    .banner-red-cross.mobile-b{
        display: flex;
    }
}